home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1998 March
/
Software of the Month Club 1998 March.iso
/
pc
/
dos
/
edu
/
create
/
reader.bat
< prev
next >
Wrap
DOS Batch File
|
1996-12-18
|
231b
|
16 lines
:start
echo off
if .%1==. goto done
cls
%1
cls
echo To read the next chapter, press ENTER.
echo To stop reading, press CTRL C, and then
echo answer Y at the prompt.
pause
shift
goto start
:done
cls
echo That's all!